2005-08-16 Sven Neumann <sven@gimp.org>
* configure.ac: add -Wall to CFLAGS if gcc is being used. Use
AC_CONFIG_FILES() to define the files that need to be generated.
+2005-08-16 Sven Neumann <sven@gimp.org>
+
+ * configure.ac: add -Wall to CFLAGS if gcc is being used. Use
+ AC_CONFIG_FILES() to define the files that need to be generated.
+
2005-08-16 Øyvind Kolås <pippin@gimp.org>
* babl/base/mode-ycbcr.c: use coefficients from Charles Poyntes color
AC_STDC_HEADERS
AM_SANITY_CHECK
+if eval "test x$GCC = xyes"; then
+ case " $CFLAGS " in
+ *[\ \ ]-Wall[\ \ ]*) ;;
+ *) CFLAGS="$CFLAGS -Wall" ;;
+ esac
+fi
+
dnl ===========================================================================
-AC_OUTPUT(Makefile \
- babl.pc \
- babl/Makefile \
- babl/base/Makefile \
- tests/Makefile \
- INSTALL \
- README
+AC_CONFIG_FILES(
+Makefile
+babl.pc
+babl/base/Makefile
+tests/Makefile
+INSTALL
+README
)
+
+AC_OUTPUT